home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- set -e
-
- # policy files that were not removed in 0.3~svn.r90520-1 to 0.3-1 upgrade
- if [ "$1" = "configure" ] && dpkg --compare-versions "$2" "<=" "0.3-2"; then
- if [ -f /usr/share/cli-common/packages.d/policy.0.2.Mono.Addins.Gui.installcligac ]; then
- echo "Removing forgotten GAC policy file: Mono.Addins.Gui 0.2..."
- /usr/share/cli-common/policy-remove Mono.Addins.Gui 0.2 > /dev/null
- fi
- fi
-
- # Automatically added by dh_installcligac
- if [ "$1" = "configure" ] && [ -x /usr/share/cli-common/gac-package-install ]; then
- /usr/share/cli-common/gac-package-install libmono-addins-gui0.2-cil
- fi
- # End automatically added section
-
-